projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d93fb5a
)
gsk: Fix printing of identity transforms
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 3 Jun 2019 16:19:57 +0000
(16:19 +0000)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 3 Jun 2019 16:20:38 +0000
(16:20 +0000)
These need to print as "none", otherwise
the parser does not accept them.
gsk/gsktransform.c
patch
|
blob
|
history
diff --git
a/gsk/gsktransform.c
b/gsk/gsktransform.c
index 7fd705a49cb3859f65c179bb744c02499aa14bb3..c2f9abd4b73f111dcdde5f0234e7d1d1691c263e 100644
(file)
--- a/
gsk/gsktransform.c
+++ b/
gsk/gsktransform.c
@@
-173,7
+173,7
@@
static void
gsk_identity_transform_print (GskTransform *transform,
GString *string)
{
- g_string_append (string, "
identity
");
+ g_string_append (string, "
none
");
}
static GskTransform *